home *** CD-ROM | disk | FTP | other *** search
- //=============================================================
- // HelloWorldTrigger.
- //=============================================================
- class HelloWorldTrigger extends Trigger placeable;
- //#1
- //Override a function from the parent class
- function PostBeginPlay(){
-
- //#2
- //Call a function from the parent class
- Super.PostBeginPlay();
-
- //#3
- //Assign a value to a member variable of the parent class
- Message = "Hello World of Unreal Tournament!";
- }
-
-